From a4be7b6267be611349c5282363e00ae2847fc0ab Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Wed, 15 Nov 2006 09:30:44 +0000 Subject: [PATCH] [LIBXC] Clarify error messages to talk about allocation 'extents' rather than 'pages'. Signed-off-by: Jimi Xenidis --- tools/libxc/xc_domain.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tools/libxc/xc_domain.c b/tools/libxc/xc_domain.c index 7936d00dc9..ae2b9f6221 100644 --- a/tools/libxc/xc_domain.c +++ b/tools/libxc/xc_domain.c @@ -352,7 +352,7 @@ int xc_domain_memory_increase_reservation(int xc_handle, if ( err >= 0 ) { DPRINTF("Failed allocation for dom %d: " - "%ld pages order %d addr_bits %d\n", + "%ld extents of order %d, addr_bits %d\n", domid, nr_extents, extent_order, address_bits); errno = ENOMEM; err = -1; @@ -390,7 +390,7 @@ int xc_domain_memory_decrease_reservation(int xc_handle, if ( err >= 0 ) { - DPRINTF("Failed deallocation for dom %d: %ld pages order %d\n", + DPRINTF("Failed deallocation for dom %d: %ld extents of order %d\n", domid, nr_extents, extent_order); errno = EINVAL; err = -1; @@ -421,7 +421,7 @@ int xc_domain_memory_populate_physmap(int xc_handle, if ( err >= 0 ) { - DPRINTF("Failed allocation for dom %d: %ld pages order %d\n", + DPRINTF("Failed allocation for dom %d: %ld extents of order %d\n", domid, nr_extents, extent_order); errno = EBUSY; err = -1; -- 2.30.2